home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 38
/
Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso
/
-seriously_amiga-
/
programming
/
other
/
wild
/
support
/
wilf
/
firsttry
/
switchdemo.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-01-25
|
168b
|
22 lines
#define A 'a'
#define B 'b'
int main()
{
char c[4]="siso";
switch (c[0])
{
case A:
{
int b,c;
}
case B:
{
int d,e;
}
}
}